home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 May / macformat-024.iso / Shareware City / Developers / BoxMaker++ / Typical ƒ / Typical.r < prev    next >
Encoding:
Text File  |  1995-01-20  |  817 b   |  48 lines  |  [TEXT/KAHL]

  1. #ifndef SystemSevenOrLater
  2.     #define SystemSevenOrLater 1
  3. #endif
  4.  
  5. #include <Types.r>
  6. #include <SysTypes.r>
  7.  
  8. #include "boxmaker templates.h"
  9. #include "boxmaker constants.h"
  10.  
  11. resource 'flgs' (128) {
  12.     dontEnterFolders,
  13.     dontPassFolders,
  14.     dontEnterInvisibles,
  15.     dontPassInvisibles
  16. };
  17.  
  18. #define myInfo "Typical 1.1"
  19.  
  20. #include "boxmaker FinderInfo.r"
  21.  
  22. resource 'MBAR' (kMBarID) { {kAppleMenuID, kFileMenuID}};
  23.  
  24. resource 'MENU' (kAppleMenuID) {
  25.     kAppleMenuID,
  26.     textMenuProc,
  27.     0x7FFFFFFD,
  28.     enabled,
  29.     apple,
  30.     {
  31.         "About BoxMaker++…", noIcon, noKey, noMark, plain,
  32.         "-", noIcon, noKey, noMark, plain
  33.     }
  34. };
  35.  
  36. resource 'MENU' (kFileMenuID) {
  37.     kFileMenuID,
  38.     textMenuProc,
  39.     0x7FFFFFFF,
  40.     enabled,
  41.     "File",
  42.     {
  43.         "Typify File…", noIcon, "O", noMark, plain,
  44.         "-", noIcon, noKey, noMark, plain,
  45.         "Quit", noIcon, "Q", noMark, plain
  46.     }
  47. };
  48.